home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / allscrpt.zip / DOWNFIDO.SCR < prev    next >
Text File  |  1986-05-04  |  768b  |  29 lines

  1. . This script will download up to 4 files from Fido boards 
  2. . Using XMODEM/CRC
  3. . It is executed using Alt-F, and the parameters are the file names
  4. .
  5. .    Bob Malakoff, 913 Brighton Road, Pittsburgh, PA 15233 (412) 321-3612
  6. .
  7. BEEP 330
  8. BEEP 300
  9. SEND "d xc $1{"
  10. WAITFOR "Control-C to abort"
  11. DOWNLOAD \temp\$1 3
  12. SEND "{"
  13. WAITFOR "File Command:"
  14. SEND "d xc $2{"
  15. WAITFOR "Control-C to abort"
  16. DOWNLOAD \temp\$2 3
  17. SEND "{"
  18. WAITFOR "File Command:"
  19. SEND "d xc $3{"
  20. WAITFOR "Control-C to abort"
  21. DOWNLOAD \temp\$3 3
  22. SEND "{"
  23. WAITFOR "File Command:"
  24. SEND "d xc $4{"
  25. WAITFOR "Control-C to abort"
  26. DOWNLOAD \temp\$4 3
  27. SEND "{"
  28. RETURN
  29.